home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 November / CPNL0711.ISO / boekhoud / finan / BADGER finance v1.0 beta 2.exe / xampplite / phpMyAdmin / libraries / transformations / application_octetstream__hex.inc.php < prev    next >
PHP Script  |  2005-06-24  |  420b  |  13 lines

  1. <?php
  2. /* $Id: application_octetstream__hex.inc.php,v 1.1 2005/06/24 14:28:00 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. function PMA_transformation_application_octetstream__hex($buffer, $options = array(), $meta = '') {
  6.     // possibly use a global transform and feed it with special options:
  7.     // include('./libraries/transformations/global.inc.php');
  8.  
  9.     return chunk_split(bin2hex($buffer), 2, ' ');
  10. }
  11.  
  12. ?>
  13.